home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5 (Alt)
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
test
/
popen_w_test.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-09-05
|
130 b
|
10 lines
#include <stdio.h>
int main(void)
{
FILE *fp = popen("io_test", "w");
fprintf(fp, "pescestocco\n");
pclose(fp);
return(0);
}